latex入门(一)

1.在cmd 中输入命令查看ctex 宏集手册

1
texdoc ctex

2.文章基本格式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% 导言区

\documentclass{article} %文件的格式

\title{My First Document} %题目
\author{Daybreak-Zheng} %作者
\date{\today} %日期

% 正文区
\begin{document} %正文格式
\maketitle
Hello World!

$f(x)=3x^2+x-1$ %数学公式

$$f(x)=3x^2+x-1$$ which is a polynomial of degree 2.

\quad %空格

\end{document}

图片

2.英文字体的设置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
\begin{document}            %正文格式
\maketitle
% 字体族设置(罗马字体、无衬线字体、打字机字体)
\textrm{Roman Family}

\textsf{Sans Serif Family}

\texttt{Typewriter Family}

{\textrm For each test case, you should output
the sum of a and b in one line.}
% 字体系列设置(粗细 宽度)

\textmd{Medium Series}

\textbf{Boldface Series}

%字体形状设计(直立、斜体、伪斜体、小型大写)

\textup{Upright Shape}

\textit{Italic Shape}

\textsl{Slanted Shape}

\textsc{Small Caps Shape}

\end{document}

图片

注意中文字体需要在导言区添加代码如下:

1
\usepackage[UTF8]{ctex} %正文中有中文字体时,要引入ctex,添加UTF8

3.中文字体的设置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
% 正文区
\begin{document} %正文格式
\maketitle

% 中文字体

{\songti 宋体}

{\heiti 黑体}

{\fangsong 仿宋}

{\kaishu 楷书}

中文字体的\textbf{粗体}与\textit{斜体}

\end{document}

图片

4.字号的设置

图片

小礼物走一个哟
0%